home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
PC World Komputer 2010 April
/
PCWorld0410.iso
/
hity wydania
/
Ubuntu 9.10 PL
/
karmelkowy-koliberek-desktop-9.10-i386-PL.iso
/
casper
/
filesystem.squashfs
/
usr
/
lib
/
libvte9
/
decset
next >
Wrap
Text File
|
2009-10-02
|
284b
|
17 lines
#!/bin/sh
#
# Set or reset DEC private modes. You'll need the XTerm docs.
#
if [ "$#" -eq 0 ] ; then
echo usage: `basename $0` '[ -r | -s ] mode [...]'
exit
fi
char=h
for arg in $@ ; do
case "$arg" in
-r) char=l ;;
-s) char=h ;;
*) echo -n -e '\033[?'${arg}${char}
esac
done